home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / dos / c / dirscan.com / README < prev   
Encoding:
Text File  |  1989-04-01  |  1.2 KB  |  40 lines

  1. This archive file contains the following files:
  2.  
  3.     dirscan.c     Directory scanning routine
  4.     dirscan.h     Header file for use in calling programs
  5.     dirscan.doc   Documentation for dirscan
  6.  
  7.     locate.c      Example "find-file" implemented using dirscan
  8.     locate        Makefile for locate.exe
  9.  
  10. .OBJ and .EXE files are deliberately NOT included.  You must
  11. create them yourself by compiling and linking the above programs.
  12. A makefile is provided for LOCATE that will compile both locate
  13. and dirscan.
  14.  
  15. These routines were implemented and tested under PC-DOS 3.30
  16. using Microsoft C 5.1.  To convert them for use with another
  17. compiler you will have to check and possibly change references to
  18. non-standard library routines, types and variables supplied by
  19. Microsoft.  This includes:
  20.  
  21.     _dos_find_first
  22.     _dos_find_next
  23.     struct find_t
  24.     _A_NORMAL
  25.     _A_SYSTEM
  26.     _A_HIDDEN
  27.     _A_SUBDIR
  28.     _MAX_DRIVE
  29.     _MAX_DIR
  30.     _MAX_PATH
  31.     _MAX_FNAME
  32.     _MAX_EXT
  33.  
  34. The source code contained in this archive is placed in the public domain
  35. and distributed AS-IS.  No formal support is available, although if you
  36. leave me a message in the MSSYS forum I will try to answer any
  37. questions.
  38.  
  39. Jim Garrison (76247,1747)
  40.